home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 27 / PC Gamer IT CD 27.iso / MEDIA / STORE.DXR / Internal_86_scrollywolly.ls < prev    next >
Encoding:
Text File  |  1997-12-01  |  362 b   |  21 lines

  1. on mouseEnter me
  2.   cursor(280)
  3. end
  4.  
  5. on mouseLeave me
  6.   cursor(-1)
  7. end
  8.  
  9. on mouseDown me
  10.   puppetSprite(the currentSpriteNum, 1)
  11.   set the member of sprite the currentSpriteNum to "uppety.down"
  12.   repeat while the mouseDown = 1
  13.     scrollByLine(member "description", -1)
  14.     updateStage()
  15.   end repeat
  16. end
  17.  
  18. on mouseUp me
  19.   puppetSprite(the currentSpriteNum, 0)
  20. end
  21.